home *** CD-ROM | disk | FTP | other *** search
/ Precision Software Appli…tions Silver Collection 1 / Precision Software Applications Silver Collection Volume One (PSM) (1993).iso / children / dressup.arj / DINSTALL.BAT < prev    next >
DOS Batch File  |  1990-07-04  |  1KB  |  33 lines

  1. ECHO OFF
  2. CLS
  3. ECHO   ╔════════════════════════════════════════════════════════════════════╗
  4. ECHO   ║ This BAT file will copy DressMeUp and the original Wardrobe files  ║
  5. ECHO   ║ from the distribution disk in the A drive to the DRESSUP directory ║
  6. ECHO   ║ on drive C.  It will also create a \DRESSUP\STASH directory and    ║
  7. ECHO   ║ copy a second set of the wardrobe files to that directory.         ║
  8. ECHO   ║    NOTE:  Change the C:\'s to copy the files to another drive.     ║
  9. ECHO   ╚════════════════════════════════════════════════════════════════════╝
  10. ECHO Press Ctrl-C to quit or
  11. PAUSE
  12. CLS
  13. ECHO   Copying DressMeUp Files
  14. ECHO ═══════════════════════════
  15. IF EXIST C:\DRESSUP\STASH\DRESUP0A.BAT GOTO :Proceed
  16. MKDIR C:\DRESSUP
  17. MKDIR C:\DRESSUP\STASH
  18. :Proceed
  19. COPY A:\BROWSE.* C:\
  20. COPY A:\DRESSUP\DRESSUP.B* C:\
  21. COPY A:\DRESSUP\DRESCSR.* C:\DRESSUP
  22. COPY A:\DRESSUP\DRESSUP.* C:\DRESSUP
  23. COPY A:\DRESSUP\*.DWG C:\DRESSUP
  24. COPY A:\DRESSUP\DRESUP??.BAT C:\DRESSUP\STASH
  25. COPY A:\DRESSUP\*.LST C:\DRESSUP\STASH
  26. COPY A:\DRESSUP\??????0A.DWG C:\DRESSUP\STASH
  27. COPY A:\DRESSUP\??????1A.DWG C:\DRESSUP\STASH
  28. COPY A:\DRESSUP\??????5A.DWG C:\DRESSUP\STASH
  29. ECHO   ═══════════════════════════════════════════════════
  30. ECHO    The DressMeUp files are copied and ready to use!
  31. ECHO    Change to the C drive, remove the floppy disk,
  32. ECHO    and type DRESSUP at the C: prompt.
  33.